how to add a picture in html

31

<?php
$host     = 'localhost';
$username = 'root';
$password = '';
$dbname   ='dummy_db';
 
$conn = new mysqli($host, $username, $password, $dbname);
if(!$conn){
    die("Cannot connect to the database.". $conn->error);
}

Comments

Submit
0 Comments